home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 22
/
Amiga Format AFCD22 (Jan 1998, Issue 106).iso
/
-screenplay-
/
utilities
/
hd_installers
/
propowerboat
/
install-propowerboat
< prev
next >
Wrap
Text File
|
1997-11-05
|
2KB
|
86 lines
(set #CI_unit 0)
(set #CI_drive ("DF%ld:" #CI_unit))
(set #rip "abaddon")
(set #dismount "dismount")
;----------------------------
;try to figure out a place where the user usually installs his games
(if (exists "Games:" (noreq) )
(set @default-dest "Games:")
(if (exists "SYS:Games" (noreq) )
(set @default-dest "SYS:Games")
(if (exists "Work:Games" (noreq) )
(set @default-dest "Work:Games")
(if (exists "JEUX:" (noreq) )
(set @default-dest "JEUX:")
(set @default-dest "SYS:")
)
)
)
)
(set @default-dest
(askdir
(prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
(help @askdir-help)
(default @default-dest)
(disk)
)
)
(set #dest (tackon @default-dest @app-name))
(makedir #dest
(help @makedir-help)
(infos)
)
;----------------------------
(copyfiles
(help @copyfiles-help)
(source "PowerBoatHD")
(dest #dest)
)
(copyfiles
(help @copyfiles-help)
(source "PowerBoatHD.info")
(dest #dest)
)
(copyfiles
(help @copyfiles-help)
(source "powrbthd.readme.info")
(dest #dest)
)
(copyfiles
(help @copyfiles-help)
(source "powrbthd.readme")
(dest #dest)
)
(message ("\nInsert %s into drive %s!" @app-name #CI_drive))
(if
(= 0 (run ("copy df%ld: to \"%s\" all " #CI_unit #dest )))
("")
(abort "\"\" must be in your PATH !")
)
(makeassign #rip #dest)
(message ("\nReady to rip %s level data?\n\nThe screen will go black" @app-name))
(if
(= 0 (run ("jst PPB-Ripper NOCACHES QUIET")))
("")
(abort "\"jst\" must be in your PATH !")
)
(exit)